crypto/tls.serverHandshakeStateTLS13.hello (field)

23 uses

	crypto/tls (current package)
		handshake_server_tls13.go#L49: 	hello           *serverHelloMsg
		handshake_server_tls13.go#L110: 	hs.hello = new(serverHelloMsg)
		handshake_server_tls13.go#L114: 	hs.hello.vers = VersionTLS12
		handshake_server_tls13.go#L115: 	hs.hello.supportedVersion = c.vers
		handshake_server_tls13.go#L149: 	hs.hello.random = make([]byte, 32)
		handshake_server_tls13.go#L150: 	if _, err := io.ReadFull(c.config.rand(), hs.hello.random); err != nil {
		handshake_server_tls13.go#L176: 	hs.hello.sessionId = hs.clientHello.sessionId
		handshake_server_tls13.go#L177: 	hs.hello.compressionMethod = compressionNone
		handshake_server_tls13.go#L198: 	hs.hello.cipherSuite = hs.suite.id
		handshake_server_tls13.go#L268: 	hs.hello.serverShare = keyShare{group: selectedGroup, data: key.PublicKey().Bytes()}
		handshake_server_tls13.go#L296: 		hs.hello.serverShare.data = append(ciphertext, hs.hello.serverShare.data...)
		handshake_server_tls13.go#L462: 		hs.hello.selectedIdentityPresent = true
		handshake_server_tls13.go#L463: 		hs.hello.selectedIdentity = uint16(i)
		handshake_server_tls13.go#L561: 		vers:              hs.hello.vers,
		handshake_server_tls13.go#L563: 		sessionId:         hs.hello.sessionId,
		handshake_server_tls13.go#L564: 		cipherSuite:       hs.hello.cipherSuite,
		handshake_server_tls13.go#L565: 		compressionMethod: hs.hello.compressionMethod,
		handshake_server_tls13.go#L566: 		supportedVersion:  hs.hello.supportedVersion,
		handshake_server_tls13.go#L734: 		copy(hs.hello.random[32-8:], make([]byte, 8))
		handshake_server_tls13.go#L737: 		if err := transcriptMsg(hs.hello, echTranscript); err != nil {
		handshake_server_tls13.go#L748: 		copy(hs.hello.random[32-8:], acceptConfirmation)
		handshake_server_tls13.go#L755: 	if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {